home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
ans
/
chap10
/
exer1001
/
Exercise.java
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-04-20
|
276 b
|
11 lines
void exercise() {
double d1 = Math.random() * Math.PI;
double d2 = Math.random() * Math.PI;
double m = Math.max(d1, d2);
System.out.println(Math.sin(m));
System.out.println(Math.cos(m));
System.out.println(Math.tan(m));
}